home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / xwindows / demos / xfract_1.z / xfract_1 / xfractint-1.06 / loadfile.c < prev    next >
C/C++ Source or Header  |  1992-09-28  |  21KB  |  723 lines

  1. /*
  2.     loadfile.c - load an existing fractal image, control level
  3.     This module is linked as an overlay, use ENTER_OVLY and EXIT_OVLY.
  4. */
  5.  
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <string.h>
  9. #ifdef XFRACT
  10. #include <unistd.h>
  11. #endif
  12. #include "fractint.h"
  13. #include "fractype.h"
  14. #include "targa_lc.h"
  15. #include "prototyp.h"
  16.  
  17. /* routines in this module    */
  18.  
  19. static int  find_fractal_info(char *,struct fractal_info *);
  20. static void load_ext_blk(char far *loadptr,int loadlen);
  21. static void skip_ext_blk(int *,int *);
  22. static void backwardscompat();
  23.  
  24. int filetype;
  25. int loaded3d;
  26.  
  27. extern int    showfile;         /* has file been displayed yet? */
  28. extern char   readname[];        /* name of fractal input file */
  29. extern char   far *resume_info;     /* pointer to resume info if alloc'd */
  30. extern int    resume_len;        /* length of resume info */
  31. extern int    adapter;
  32. extern int    calc_status;
  33. extern int    initmode;         /* initial video mode        */
  34. extern long   calctime;
  35. extern int    initbatch;        /* 1 if batch run (no kbd)  */
  36. extern int    maxit;
  37. extern int    initincr;         /* maxiter incrmnt        */
  38. extern char   usr_stdcalcmode;        /* pass mode            */
  39. extern int    fractype;         /* fractal type         */
  40. extern double xxmin,xxmax;        /* corner values        */
  41. extern double yymin,yymax;        /* corner values        */
  42. extern double xx3rd,yy3rd;        /* corner values        */
  43. extern double param[4];         /* parameters            */
  44. extern int    fillcolor;        /* fill color: -1 = normal  */
  45. extern int    inside;            /* inside color: 1=blue     */
  46. extern int    outside;            /* outside color, if set    */
  47. extern int    finattract;        /* finite attractor option  */
  48. extern int    forcesymmetry;
  49. extern int    LogFlag;            /* non-zero if logarithmic palettes */
  50. extern int    rflag, rseed;
  51. extern int    usr_periodicitycheck;
  52. extern char   useinitorbit;
  53. extern struct complex initorbit;
  54. extern int    potflag;            /* continuous potential flag */
  55. extern int    pot16bit;
  56. extern double potparam[3];        /* three potential parameters*/
  57. extern double inversion[];
  58. extern int    decomp[];
  59. extern int    usr_distest;        /* non-zero if distance estimator   */
  60. extern int    distestwidth;
  61. extern int    init3d[20];        /* '3d=nn/nn/nn/...' values */
  62. extern char   usr_floatflag;        /* floating-point fractals? */
  63. extern char   floatflag;
  64. extern int    usr_biomorph;
  65. extern char   FormName[];
  66. extern char   LName[];
  67. extern char   IFSName[];
  68. extern int    bailout;            /* user input bailout value */
  69. extern int    previewfactor;
  70. extern int    xtrans;
  71. extern int    ytrans;
  72. extern int    red_crop_left;
  73. extern int    red_crop_right;
  74. extern int    blue_crop_left;
  75. extern int    blue_crop_right;
  76. extern int    red_bright;
  77. extern int    blue_bright;
  78. extern int    xadjust;
  79. extern int    eyeseparation;
  80. extern int    glassestype;
  81. extern int    display3d;        /* 3D display flag: 0 = OFF */
  82. extern int    overlay3d;        /* 3D overlay flag: 0 = OFF */
  83. extern int    viewwindow;        /* 0 for full screen, 1 for window */
  84. extern float  viewreduction;        /* window auto-sizing */
  85. extern float  finalaspectratio;     /* for view shape and rotation */
  86. extern int    xdots, ydots;        /* # of dots on the logical screen */
  87. extern int    viewxdots,viewydots;    /* explicit view sizing */
  88. extern int    save_system,save_release;
  89. extern int    Ambient;
  90. extern int    RANDOMIZE;
  91. extern int    haze;
  92. extern int    transparent[2];
  93. extern int    rotate_lo,rotate_hi;
  94. extern int far *ranges;
  95. extern int    rangeslen;
  96. extern int    invert;
  97. extern int    num_fractal_types;
  98.  
  99. static FILE *fp;
  100.  
  101. int fileydots, filexdots, filecolors;
  102. float fileaspectratio;
  103.  
  104. int skipxdots,skipydots;    /* for decoder, when reducing image */
  105.  
  106.  
  107. void loadfile_overlay() { }    /* for restore_active_ovly */
  108.  
  109. #ifdef XFRACT
  110. extern int decode_fractal_info();
  111. #endif
  112.  
  113. int read_overlay()    /* read overlay/3D files, if reqr'd */
  114. {
  115.    struct fractal_info read_info;
  116.    char oldfloatflag;
  117.    char msg[110];
  118.  
  119.    ENTER_OVLY(OVLY_LOADFILE);
  120.  
  121.    showfile = 1;        /* for any abort exit, pretend done */
  122.    initmode = -1;        /* no viewing mode set yet */
  123.    oldfloatflag = usr_floatflag;
  124.    loaded3d = 0;
  125.  
  126.    if(strchr(readname,'.') == NULL)
  127.       strcat(readname,".gif");
  128.  
  129.    if(find_fractal_info(readname,&read_info)) { /* didn't find a useable file */
  130.       sprintf(msg,"Sorry, %s isn't a file I can decode.",readname);
  131.       stopmsg(0,msg);
  132.       EXIT_OVLY;
  133.       return(-1);
  134.       }
  135.  
  136.    maxit    = read_info.iterations;
  137.    fractype    = read_info.fractal_type;
  138.    if (fractype < 0 || fractype >= num_fractal_types) {
  139.       sprintf(msg,"Warning: %s has a bad fractal type; using 0",readname);
  140.       fractype = 0;
  141.    }
  142.    curfractalspecific = &fractalspecific[fractype];
  143.    xxmin    = read_info.xmin;
  144.    xxmax    = read_info.xmax;
  145.    yymin    = read_info.ymin;
  146.    yymax    = read_info.ymax;
  147.    param[0]    = read_info.creal;
  148.    param[1]    = read_info.cimag;
  149.    save_release = 1100; /* unless we find out better later on */
  150.  
  151.    invert = 0;
  152.    if(read_info.version > 0) {
  153.       param[2]        = read_info.parm3;
  154.       roundfloatd(¶m[2]);
  155.       param[3]        = read_info.parm4;
  156.       roundfloatd(¶m[3]);
  157.       potparam[0]   = read_info.potential[0];
  158.       potparam[1]   = read_info.potential[1];
  159.       potparam[2]   = read_info.potential[2];
  160.       potflag        = (potparam[0] != 0.0);
  161.       rflag        = read_info.rflag;
  162.       rseed        = read_info.rseed;
  163.       inside        = read_info.inside;
  164.       LogFlag        = read_info.logmap;
  165.       inversion[0]  = read_info.invert[0];
  166.       inversion[1]  = read_info.invert[1];
  167.       inversion[2]  = read_info.invert[2];
  168.       if (inversion[0] != 0.0)
  169.      invert = 3;
  170.       decomp[0]     = read_info.decomp[0];
  171.       decomp[1]     = read_info.decomp[1];
  172.       usr_biomorph  = read_info.biomorph;
  173.       forcesymmetry = read_info.symmetry;
  174.       }
  175.  
  176.    if(read_info.version > 1) {
  177.       save_release  = 1200;
  178.       if (!display3d
  179.     && (read_info.version <= 4 || read_info.flag3d > 0
  180.         || (curfractalspecific->flags&PARMS3D) )) {
  181.      int i;
  182.      for (i = 0; i < 16; i++)
  183.         init3d[i] = read_info.init3d[i];
  184.      previewfactor     = read_info.previewfactor;
  185.      xtrans      = read_info.xtrans;
  186.      ytrans      = read_info.ytrans;
  187.      red_crop_left     = read_info.red_crop_left;
  188.      red_crop_right  = read_info.red_crop_right;
  189.      blue_crop_left  = read_info.blue_crop_left;
  190.      blue_crop_right = read_info.blue_crop_right;
  191.      red_bright     = read_info.red_bright;
  192.      blue_bright     = read_info.blue_bright;
  193.      xadjust     = read_info.xadjust;
  194.      eyeseparation     = read_info.eyeseparation;
  195.      glassestype     = read_info.glassestype;
  196.      }
  197.       }
  198.  
  199.    if(read_info.version > 2) {
  200.       save_release = 1300;
  201.       outside       = read_info.outside;
  202.       }
  203.  
  204.    calc_status = 0;      /* defaults if version < 4 */
  205.    xx3rd = xxmin;
  206.    yy3rd = yymin;
  207.    usr_distest = 0;
  208.    calctime = 0;
  209.    if(read_info.version > 3) {
  210.       save_release = 1400;
  211.       xx3rd      = read_info.x3rd;
  212.       yy3rd      = read_info.y3rd;
  213.       calc_status = read_info.calc_status;
  214.       usr_stdcalcmode = read_info.stdcalcmode;
  215.       usr_distest     = read_info.distest;
  216.       usr_floatflag   = read_info.floatflag;
  217.       bailout      = read_info.bailout;
  218.       calctime      = read_info.calctime;
  219.       trigndx[0]  = read_info.trigndx[0];
  220.       trigndx[1]  = read_info.trigndx[1];
  221.       trigndx[2]  = read_info.trigndx[2];
  222.       trigndx[3]  = read_info.trigndx[3];
  223.       finattract  = read_info.finattract;
  224.       initorbit.x = read_info.initorbit[0];
  225.       initorbit.y = read_info.initorbit[1];
  226.       useinitorbit = read_info.useinitorbit;
  227.       usr_periodicitycheck = read_info.periodicity;
  228.       }
  229.  
  230.    pot16bit = 0;
  231.    save_system = 0;
  232.    if(read_info.version > 4) {
  233.       pot16bit       = read_info.pot16bit;
  234.       if (pot16bit)
  235.      filexdots >>= 1;
  236.       fileaspectratio = read_info.faspectratio;
  237.       if (fileaspectratio < 0.01)    /* fix files produced in early v14.1 */
  238.      fileaspectratio = SCREENASPECT;
  239.       save_system  = read_info.system;
  240.       save_release = read_info.release; /* from fmt 5 on we know real number */
  241.       if (read_info.version == 5    /* except a few early fmt 5 cases: */
  242.       && (save_release <= 0 || save_release >= 2000)) {
  243.      save_release = 1410;
  244.      save_system = 0;
  245.      }
  246.       if (!display3d && read_info.flag3d > 0) {
  247.      loaded3d    = 1;
  248.      Ambient    = read_info.ambient;
  249.      RANDOMIZE    = read_info.randomize;
  250.      haze        = rea